home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global indice, ElencoModelle
- set numeroElementiLista to count(ElencoModelle)
- if indice <= 1 then
- notIndRollOverButton()
- else
- if (numeroElementiLista - indice + 1) <= 1 then
- notAvaRollOverButton()
- else
- testRollOverButton()
- end if
- end if
- go(the frame)
- end
-
- on mouseUp
- global indice, ElencoModelle
- if the clickOn = 33 then
- inizializzaPaginaModello()
- go(#next)
- set linea to getAt(ElencoModelle, indice - 2)
- assegnaLogo(35, char 1 of item 1 of line linea of field "DBTXT" & "L.PIC")
- assegnaLogo(7, item 1 of line linea of field "DBTXT" & ".PIC")
- riempiCampo(linea, "dati", EMPTY, 1)
- else
- if the clickOn = 34 then
- inizializzaPaginaModello()
- go(#next)
- set linea to getAt(ElencoModelle, indice - 1)
- assegnaLogo(35, char 1 of item 1 of line linea of field "DBTXT" & "L.PIC")
- assegnaLogo(7, item 1 of line linea of field "DBTXT" & ".PIC")
- riempiCampo(linea, "dati", EMPTY, 1)
- else
- end if
- end if
- end
-